home *** CD-ROM | disk | FTP | other *** search
/ Aminet 23 / Aminet 23 (1998)(GTI - Schatztruhe)[!][Feb 1998].iso / Aminet / disk / misc / TransADF.lha / Source / errors.h < prev    next >
C/C++ Source or Header  |  1997-11-29  |  486b  |  24 lines

  1. #ifndef TRANSADF_ERRORS_H
  2. #define TRANSADF_ERRORS_H
  3.  
  4. /*---------------------------*/
  5. /* Error reporting functions */
  6. /*---------------------------*/
  7.  
  8. #ifndef EXEC_TYPES_H
  9. #include <exec/types.h>
  10. #endif /* EXEC_TYPES_H */
  11.  
  12.  
  13. /*---------------------*/
  14. /* Function Prototypes */
  15. /*---------------------*/
  16.  
  17. void reportDOSError  (LONG DOSError);
  18. void reportIOError   (BYTE IOError);
  19. void reportTDError   (BYTE TDError);
  20. void reportZLibError (LONG ZLibError);
  21.  
  22.  
  23. #endif /* TRANSADF_ERRORS_H */
  24.